home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Found / FWCommon / Include / FWCommon.hpp < prev    next >
Encoding:
Text File  |  1995-11-08  |  801 b   |  38 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWCommon.hpp
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    (c) 1993, 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWCOMMON_HPP
  11. #define FWCOMMON_HPP
  12.  
  13. // ----- ODF Includes -----
  14.  
  15. #ifndef FWSTDDEF_H
  16. #include "FWStdDef.h"
  17. #endif
  18.  
  19. // ----- C++ runtime Includes -----
  20.  
  21. #include <stddef.h>
  22.  
  23. // ----- Platform Includes -----
  24.  
  25. #if defined(FW_BUILD_WIN) && !defined(_INC_WINDOWS)
  26. #include <Windows.h>
  27. #endif
  28.  
  29. #if defined(FW_BUILD_WIN) && !defined(_INC_WINDOWSX)
  30. #include <WindowsX.h>
  31. #endif
  32.  
  33. #if defined(FW_BUILD_MAC) && !defined(__MEMORY__)
  34. #include <Memory.h>
  35. #endif
  36.  
  37. #endif // FWCOMMON_HPP
  38.